home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / c_news / 18 / beginner / compute.c < prev    next >
Text File  |  1989-11-14  |  155b  |  8 lines

  1. /* This is the function that determines the average of a bunch
  2.    of numbers */
  3. float compute (int n, float xsum)
  4. {
  5.     return (xsum/(float)n);
  6. }
  7. 
  8.